//03_Conditional statment //prac_1 //wap to print Greater number #include #include void main() { int a,b; clrscr(); cout<<"Enter 1st number:"; cin>>a; cout<<"Enter 2nd number:"; cin>>b; if (a>b) { cout<<"1st number greater then 2nd number"; } else { cout<<"2nd number greater then 1st number"; } getch(); } /* -----output------ Enter 1st number:5 Enter 2nd number:4 1st number greater then 2nd number */